home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 2 / Amiga Tools 2.iso / tools / packer / uuinout / uuprepare.readme < prev    next >
Text File  |  1995-03-09  |  2KB  |  63 lines

  1.  
  2. uuPrepare is an arexx script that will massage the raw uuencoded
  3. data uuIn puts out into a form more accepted by the net.
  4.  
  5. It takes a binary file to encode, and optionaly a header file.
  6. If a header file is given, its contents will appear at the top of
  7. each data file.
  8.  
  9. At the moment uuPrepare just adds the header, and a headline and
  10. tailine to the data.
  11. For example,
  12.   uuIn myfile myfile.uu
  13. outputs:
  14.  
  15.  
  16. begin 644 myfile
  17. MODJHGOEHGOTHVTRHG;EHG;O4HEGHWE;GHO;ERHGOHE
  18. ...
  19. end
  20. size 123
  21.  
  22.  
  23. while
  24.   rx uuPrepare myfile
  25. outputs to numbered files "myfile.uu1" through "myfile.uuX"
  26.  
  27.  
  28. <header file>
  29. ----BEGIN----begin----myfile----part 1--------------------------
  30. begin 644 myfile
  31. MODJHGOEHGOTHVTRHG;EHG;O4HEGHWE;GHO;ERHGOHE
  32. ...
  33. -----END------end-----myfile----part 1--------------------------
  34. ...
  35. <header file>
  36. ----BEGIN----begin----myfile----part X--------------------------
  37. ...
  38. end
  39. size 123
  40.  
  41. -----END------end-----myfile----part X--------------------------
  42.  
  43.  
  44. The header and tail lines are added for the benifit of some
  45. multiple-part uudecoders that use them when concatenating and
  46. decoding the data.
  47.  
  48.  
  49. uuPrepare is intended to be a starting point for people who wish to
  50. create an automatic poster arexx program to post binary files to
  51. internet newsgroups with the minimum human interaction. All alone
  52. it is an interresting toy, but I don't see many great uses for it.
  53.  
  54. For this reason, uuPrepare is public domain.
  55.  
  56. uuPrepar has one limitation: the filenames must contain no spaces.
  57. This is because the "easy" arexx command line parsing is used, so
  58. double-quotes are not interpreted as a special symbol.
  59.  
  60.  
  61. -Nicolas Dade
  62.  
  63.